home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 37 / CD Expert nº 37.iso / LastCall / lastcall.exe / stuff / pour.dxr / 00003_Rollover for help.ls < prev    next >
Encoding:
Text File  |  2000-03-23  |  462 b   |  20 lines

  1. on mouseEnter me
  2.   global gDrinkContentSpr
  3.   myRect = (the activeWindow).rect
  4.   stageRect = (the stage).rect
  5.   tipLoc = point(myRect.left - stageRect.left, myRect.bottom - stageRect.top + 5)
  6.   if the stage <> the activeWindow then
  7.     tell the stage
  8.       showToolTip(sprite(me.spriteNum), #pourmeter, tipLoc, 1)
  9.     end tell
  10.   end if
  11. end
  12.  
  13. on mouseLeave me
  14.   if the stage <> the activeWindow then
  15.     tell the stage
  16.       hideToolTip()
  17.     end tell
  18.   end if
  19. end
  20.